home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / azpzip / _setup.1 / frmTest.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-11-06  |  2.7 KB  |  60 lines

  1. VERSION 5.00
  2. Begin VB.Form frmTest 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Test"
  5.    ClientHeight    =   4065
  6.    ClientLeft      =   7380
  7.    ClientTop       =   4365
  8.    ClientWidth     =   4440
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   4065
  13.    ScaleWidth      =   4440
  14.    ShowInTaskbar   =   0   'False
  15.    Begin VB.CommandButton cmdUpdate 
  16.       Caption         =   "Update"
  17.       Height          =   375
  18.       Left            =   0
  19.       TabIndex        =   1
  20.       Top             =   0
  21.       Width           =   4455
  22.    End
  23.    Begin VB.ListBox AZPList 
  24.       Height          =   3570
  25.       Left            =   0
  26.       TabIndex        =   0
  27.       Top             =   480
  28.       Width           =   4455
  29.    End
  30. Attribute VB_Name = "frmTest"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Private Sub cmdUpdate_Click()
  36.     AZPList.Clear
  37.     AZPList.AddItem "Compression: " + Str(frmAZPCoDec.ActiveZipperPro1.Compression)
  38.     AZPList.AddItem "DecompressedFile: " + frmAZPCoDec.ActiveZipperPro1.DecompressedFile
  39.     AZPList.AddItem "Destination: " + frmAZPCoDec.ActiveZipperPro1.Destination
  40.     AZPList.AddItem "Extension: " + frmAZPCoDec.ActiveZipperPro1.Extension
  41.     AZPList.AddItem "FileProperties: " + frmAZPCoDec.ActiveZipperPro1.FileProperties
  42.    ' AZPList.AddItem "Index: " + frmAZPCoDec.ActiveZipperPro1.Index
  43.     AZPList.AddItem "Level: " + Str(frmAZPCoDec.ActiveZipperPro1.Level)
  44.     AZPList.AddItem "MaxFiles: " + Str(frmAZPCoDec.ActiveZipperPro1.MaxFiles)
  45.     AZPList.AddItem "Name: " + frmAZPCoDec.ActiveZipperPro1.Name
  46.   '  AZPList.AddItem "Object: " + frmAZPCoDec.ActiveZipperPro1.Object
  47.     AZPList.AddItem "OutPutFile: " + frmAZPCoDec.ActiveZipperPro1.OutPutFile
  48.    ' AZPList.AddItem "Parent: " + Str(frmAZPCoDec.ActiveZipperPro1.Parent)
  49.     AZPList.AddItem "Password: " + frmAZPCoDec.ActiveZipperPro1.Password
  50. '    AZPList.AddItem "Progress: " + Str(frmAZPCoDec.ActiveZipperPro1.Progress)
  51.     AZPList.AddItem "Protected: " + Str(frmAZPCoDec.ActiveZipperPro1.Protected)
  52.     AZPList.AddItem "SourceFile: " + frmAZPCoDec.ActiveZipperPro1.SourceFile
  53.     AZPList.AddItem "StopOperation: " + Str(frmAZPCoDec.ActiveZipperPro1.StopOperation)
  54.     AZPList.AddItem "Tag: " + frmAZPCoDec.ActiveZipperPro1.Tag
  55.     AZPList.AddItem "UseExtension: " + Str(frmAZPCoDec.ActiveZipperPro1.UseExtension)
  56.     AZPList.AddItem "UsingClass: " + Str(frmAZPCoDec.ActiveZipperPro1.UsingClass)
  57.     AZPList.AddItem "Version: " + frmAZPCoDec.ActiveZipperPro1.Version
  58.     AZPList.AddItem "Web: " + Str(frmAZPCoDec.ActiveZipperPro1.Web)
  59. End Sub
  60.